File manager - Edit - /home/autoph/public_html/projects/app/Http/Controllers/API/v1/EmployeeObController.php
Back
<?php namespace App\Http\Controllers; namespace App\Http\Controllers\API\v1; use App\Http\Controllers\Controller; use App\Models\EmployeeOb; use App\Models\User; use App\Notifications\Travel; use Carbon\Carbon; use Exception; use Illuminate\Http\Request; use Illuminate\Http\Response; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Validator; use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\Notification; use Illuminate\Support\Facades\Storage; use Illuminate\Validation\Rule; use PHPUnit\Event\Code\Throwable; use Illuminate\Support\Str; class EmployeeObController extends Controller { /** * Display a listing of the resource. */ public function index(Request $request) { // $employee = Auth::user(); $keyword = $request->input('keyword', ''); $perPage = $request->input('per_page',PHP_INT_MAX); $sortBy = $request->input('sortBy', ''); $sortType = $request->input('sortType', ''); $data = EmployeeOb::with([ 'employee', 'recommending' => fn($recommending) => $recommending->select('employee_id', 'asa_user_id', 'firstname', 'lastname'), 'approving'=> fn($approving) => $approving->select('employee_id', 'asa_user_id', 'firstname', 'lastname'), ]) ->select( 'id', 'employee_id', 'company_id', 'dealer_id', 'date_from', 'date_to', 'from_time', 'to_time', 'attachment', 'allow_higher_approval', 'destination', 'description', 'denied_reason', 'meal', 'meal_amount', 'transportation', 'transportation_amount', 'status', 'charge_to', 'validated', 'validated_by', 'validated_at', 'deferred_reason', 'recommending_id', 'approver_id', 'recommended_at', 'approved_at', 'created_at', 'validated' ) ->where(function ($query) use ($keyword) { $keyword = str_replace(" ", "%", $keyword); // $query->where('name', 'like', '%' . $keyword . '%'); }); if($employee->roles[0]['group_id'] != 1){ $data->where(['employee_id' => $employee->employee_id]); } if (!empty($sortBy) && !empty($sortType)) { $data = $data->orderBy($sortBy, $sortType); } // $data = $data->get(); $data = $data->paginate($perPage); $month = date('m'); $year = date('Y'); $totalOBForThisMonth = EmployeeOb::where(function($query) use ($month, $year) { $query->where(function($q) use ($month, $year) { $q->whereMonth('date_from', $month) ->whereYear('date_from', $year); })->orWhere(function($q) use ($month, $year) { $q->whereMonth('date_to', $month) ->whereYear('date_to', $year); }); }) ->where('enabled', 1) ->where('status', 2) ->where('employee_id', $employee->employee_id) ->count() ?? 0; $totalOBForThisYear = EmployeeOb::where(function($query) use ($year) { $query->whereYear('date_from', $year) ->orWhereYear('date_to', $year); }) ->where('enabled', 1) ->where('status', 2) ->where('employee_id', $employee->employee_id) ->count(); // First, get the count of days that match the criteria for the month and year $totalDays = EmployeeOb::where(function($query) use ($month, $year) { $query->where(function($q) use ($month, $year) { $q->whereMonth('date_from', $month) ->whereYear('date_from', $year); })->orWhere(function($q) use ($month, $year) { $q->whereMonth('date_to', $month) ->whereYear('date_to', $year); }); }) ->where('enabled', 1) ->where('status', 2) ->where('employee_id', $employee->employee_id) ->count(); // Get the number of days in the specified month and year $daysInMonth = Carbon::createFromDate($year, $month)->daysInMonth; // Calculate the average, using the days in the current month $averageOBForThisMonth = $daysInMonth > 0 ? $totalDays / $daysInMonth : 0; return response()->json([ 'data' => $data, 'total_ob_for_the_month' => $totalOBForThisMonth, 'total_ob_for_the_year' => $totalOBForThisYear, 'avg_ob_for_the_month' => number_format($averageOBForThisMonth, 1), ]); } public function getObList(Request $request) { // $employee = Auth::user(); $keyword = $request->input('keyword', ''); $perPage = $request->input('per_page',PHP_INT_MAX); $sortBy = $request->input('sortBy', ''); $sortType = $request->input('sortType', ''); $dealership_id = $request->input('dealership', null); $data = EmployeeOb::with([ 'recommending' => fn($recommending) => $recommending->select('employee_id', 'asa_user_id', 'firstname', 'lastname'), 'approving'=> fn($approving) => $approving->select('employee_id', 'asa_user_id', 'firstname', 'lastname'), 'employee'=> fn($employee) => $employee->select('employee_id', 'firstname', 'lastname'), ]) ->select( 'id', 'employee_id', 'company_id', 'dealer_id', 'date_from', 'date_to', 'from_time', 'to_time', 'attachment', 'allow_higher_approval', 'destination', 'description', 'denied_reason', 'status', 'meal', 'meal_amount', 'transportation', 'transportation_amount', 'charge_to', 'validated', 'validated_by', 'validated_at', 'deferred_reason', 'recommending_id', 'approver_id', 'recommended_at', 'approved_at', 'created_at', 'validated' ) ->where('status',2) ->where(function ($query) use ($keyword) { $keyword = str_replace(" ", "%", $keyword); // $query->where('name', 'like', '%' . $keyword . '%'); }); if($dealership_id) $data = $data->where('dealer_id', $dealership_id); // $data = $data->get(); $data = $data->paginate($perPage); return response()->json([ 'data' => $data, ]); } public function store(Request $request) { $user = Auth::user(); $validator = Validator::make($request->all(), [ 'date_from' => "required", 'date_to' => "required", 'from_time' => "required", 'to_time' => "required", ]); /** If validation fails return with error message */ if ($validator->fails()) { $errors = $validator->errors(); $first = $errors->getMessages(); return response()->json([ 'status' => false, 'message' => (reset($first))[0], 'errors' => $errors ], Response::HTTP_UNPROCESSABLE_ENTITY); } DB::connection()->beginTransaction(); try { $allow_higher_approval = ($request->allow_higher_approval && $request->allow_higher_approval !== 'null' && $request->allow_higher_approval !== 'false' && trim($request->allow_higher_approval) !== '' ? 1 : 0); $attachmentName = $this->handleAttachment($request); $Status = EmployeeOb::create([ 'employee_id' => $user->employee_id, 'company_id' => $user->employees->company_id, 'dealer_id' => $user->employees->dealer_id, 'date_from' => $request->date_from, 'date_to' => $request->date_to, 'from_time' => $request->from_time, 'to_time' => $request->to_time, 'destination' => $request->destination, 'description' => $request->description, 'attachment' => $attachmentName, 'allow_higher_approval' => $allow_higher_approval, 'recommending_id' => $request->recommending_id, 'approver_id' => $request->approver_id, 'status' => 0, 'charge_to' => $request->charge_to, ]); DB::connection()->commit(); // Load the relationships $Status->load(['employee']); $email_to = $this->getEmployeeEmailData($request->recommending_id); Notification::send($email_to, new Travel($Status)); return response()->json([ 'status' => true, 'message' => 'Saved successfully!', 'data' => $Status ],201); } catch (Throwable $e) { DB::connection()->rollback(); return response()->json([ 'status' => false, 'message' => 'Unable to process request. Please try again.', 'data' => $e->getMessage() ]); } } public function handleAttachment(Request $request) { if ($request->hasFile('attachment')) { $image = $request->file('attachment'); $attachmentName = time() . '_' . $image->getClientOriginalName(); $path = "employee-ob/" . $attachmentName; if (Storage::disk('local')->put($path, file_get_contents($image))) { return $attachmentName; } throw new Exception('Unable to process attachment.'); } return ''; } public function update(Request $request) { // dd($request->all()); $id = $request->id; $data = EmployeeOb::where('id', $id)->first(); $user = Auth::user(); $validator = Validator::make($request->all(), [ 'date_from' => "required|date", 'date_to' => "required|date", 'from_time' => "required", 'to_time' => "required", 'charge_to' => "required" ]); /** If validation fails return with error message */ if ($validator->fails()) { $errors = $validator->errors(); $first = $errors->getMessages(); return response()->json([ 'status' => false, 'message' => (reset($first))[0], 'errors' => $errors ], Response::HTTP_UNPROCESSABLE_ENTITY); } $attachment_name = $request->attachment; if($data->attachment != $request->attachment) { $attachment_file_path = 'employee-ob/' . $data->attachment; if(Storage::exists($attachment_file_path)) { Storage::delete($attachment_file_path); } if($request->hasFile('attachment')) { $image = $request->file('attachment'); $attachment_name = time().'_'.$image->getClientOriginalName(); $path = "employee-ob/".$attachment_name; if(!Storage::disk('local')->put($path, file_get_contents($image))) { return response()->json(['message'=> "Failed to upload attachment"],304); } } else { $attachment_name = null; } } DB::connection()->beginTransaction(); try { $allow_higher_approval = ($request->allow_higher_approval && $request->allow_higher_approval !== 'null' && $request->allow_higher_approval !== 'false' && trim($request->allow_higher_approval) !== '' ? 1 : 0); $data->employee_id = $user->employee_id; $data->date_from = $request->date_from; $data->date_to = $request->date_to; $data->from_time = $request->from_time; $data->to_time = $request->to_time; $data->destination = $request->destination; $data->allow_higher_approval = $allow_higher_approval; $data->description = $request->description; $data->attachment = $attachment_name; $data->charge_to = $request->charge_to; $data->save(); DB::connection()->commit(); return response()->json([ 'status' => true, 'message' => 'Saved successfully!', 'data' => $data ],201); } catch (Throwable $e) { DB::connection()->rollback(); return response()->json([ 'status' => false, 'message' => 'Unable to process request. Please try again.', 'data' => $e->getMessage() ]); } } public function destroy(int $id) { $data = EmployeeOb::find($id); if(!$data) { return response()->json(['message' => "Record not found!"],204); } DB::connection()->beginTransaction(); $data->delete(); DB::connection()->commit(); return response()->json(['message' => "Record successfully deleted!"],201); } public function removeAttachment(Request $request) { $id = $request->id; $attachment = $request->attachment; $data = EmployeeOb::where('id', $id)->first(); $data->attachment = NULL; $data->save(); DB::connection()->commit(); $attachment_file_path = 'employee-ob/' . $request->attachment; if(Storage::exists($attachment_file_path)) { Storage::delete($attachment_file_path); } return response()->json([ 'status' => true, 'message' => 'Saved successfully!', 'data' => $data ],201); } public function getEmployeeEmailData($id){ return User::where('employee_id', '=', $id)->first(); } }
| ver. 1.4 |
.
| PHP 8.1.32 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings